数学模块
C++的 cmath 库中包含了很多常用的数学函数。下面是一些函数的示例:
三角函数:sin, cos, tan, sec, csc, cot 反三角函数:asin, acos, atan, asec, acsc, acot 双曲函数:sinh, cosh, tanh, sech, csch, coth 指数和对数函数:exp, log, log10, logb 幂函数:pow, sqrt, cbrt 圆周率函数:M_PI (代表圆周率 π 的宏) 其他函数:fabs (返回绝对值), ceil (返回大于等于给定值的最小整数), floor (返回小于等于给定值的最大整数), fmod (返回浮点余数)